home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
Programming
/
Source
/
IP_Graph3D
/
FourSidedPolygon.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-08-17
|
302 b
|
24 lines
#import "FourSidedPolygon.h"
@implementation FourSidedPolygon
- init
{
[super init];
vertex[0].y = 0.0;
vertex[1].y = 0.0;
vertex[2].y = 0.0;
vertex[3].y = 0.0;
normal1.x = 0.0;
normal1.y = 1.0;
normal1.z = 0.0;
normal2.x = 0.0;
normal2.y = 1.0;
normal2.z = 0.0;
return self;
}
@end